home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / src / paths.h < prev    next >
Text File  |  1993-08-27  |  2KB  |  44 lines

  1. /* Hey Emacs, this is -*- C -*- code!  */
  2.  
  3. /* Backslashify the default paths for NT */
  4.  
  5. /* The default search path for Lisp function "load".
  6.    This sets load-path.  */
  7. /* #define PATH_LOADSEARCH "/usr/local/lib/emacs/lisp" */
  8. #define PATH_LOADSEARCH "d:\\emacs-19.17\\lisp"
  9.  
  10. /* Like PATH_LOADSEARCH, but used only when Emacs is dumping.  This
  11.    path is usually identical to PATH_LOADSEARCH except that the entry
  12.    for the directory containing the installed lisp files has been
  13.    replaced with ../lisp.  */
  14. /* #define PATH_DUMPLOADSEARCH "../lisp" */
  15. #define PATH_DUMPLOADSEARCH "..\\lisp"
  16.  
  17. /* The extra search path for programs to invoke.  This is appended to
  18.    whatever the PATH environment variable says to set the Lisp
  19.    variable exec-path and the first file name in it sets the Lisp
  20.    variable exec-directory.  exec-directory is used for finding
  21.    executables and other architecture-dependent files.  */
  22. /* #define PATH_EXEC "/usr/local/lib/emacs/etc" */
  23. #define PATH_EXEC "d:\\emacs-19.17\\etc"
  24.  
  25. /* Where Emacs should look for its architecture-independent data
  26.    files, like the docstring file.  The lisp variable data-directory
  27.    is set to this value.  */
  28. /* #define PATH_DATA "/usr/local/lib/emacs/data" */
  29. #define PATH_DATA "d:\\emacs-19.17\\data"
  30.  
  31. /* The name of the directory that contains lock files with which we
  32.    record what files are being modified in Emacs.  This directory
  33.    should be writable by everyone.  THE STRING MUST END WITH A
  34.    SLASH!!!  */
  35. /* #define PATH_LOCK "/usr/local/lib/emacs/lock/" */
  36. #define PATH_LOCK "d:\\emacs-19.17\\lock\\"
  37.  
  38. /* Where the configuration process believes the info tree lives.  The
  39.    lisp variable configure-info-directory gets its value from this
  40.    macro, and is then used to set the Info-default-directory-list.  */
  41. /* #define PATH_INFO "/usr/local/info" */
  42. #define PATH_INFO "d:\\emacs-19.17\\info"
  43.  
  44.